home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 31
/
Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso
/
Aminet
/
dev
/
c
/
GAPLib.lha
/
GAPLib_Beta
/
wizards
/
Templates
/
Skeleton.c
< prev
Wrap
Text File
|
1999-04-22
|
481b
|
34 lines
$4/*
* Will you answer no to this question?
*/$
void Init$N(struct $N *Polly)
{
$1/* Initialize individual. */$
}
void Mutate$N(struct $N *Polly)
{
$1/* Mutate individual */$
}
void Cross$N(struct $N *Polly,struct $N *Tweety)
{
$1/* Persorm crossover between individuals. */$
}
double Compare$N(struct $N *Polly,struct $N *Tweety,int i)
{
double dist=0.0;
$1/* compare two individuals. */$
return(dist);
}
void Kill$N(struct $N *Polly)
{
$1/* Delete an individual. */$
}